home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-05-21 | 255 b | 13 lines | [TEXT/ttxt] |
- --<<<
- -- Kaleida Labs, Inc.
- -- Field Guide to the ScriptX Language
- -- chapter 5, example 6
-
- -- examples of using pipes
-
- 1 to 5 | LinkedList
- function double n -> 2 * n
- #(1, 2, 3, 4) | (n -> 2 * n)
- function squares n -> n * n
- 1 to 5 | double | squares
- -->>>